/* 1. BASE SETUP - Horizontal overflow fix kiya gaya hai */
.fb-panel-scope {
    background: #0a0a0a;
    color: #fff;
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

.fb-panel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
    margin-top: 50px;
}

/* 2. TYPOGRAPHY - Fluid font sizes use kiye hain */
.fb-panel-title {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    text-align: left;
}

.fb-panel-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 5px;
    background: #ffcc00;
}

.fb-panel-title span {
    color: #ffcc00;
}

.fb-panel-header-left {
    margin-bottom: 40px;
}

/* 3. HERO SECTION - Left Aligned for Desktop, Centered for Mobile */
.fb-panel-hero {
    padding: clamp(60px, 12vh, 150px) 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 40%, rgba(0, 0, 0, 0.5) 100%),
        url('https://images.unsplash.com/photo-1558494949-ef010cbdcc48?q=80&w=1600') center/cover;
    text-align: left;
}

.fb-panel-badge {
    color: #ffcc00;
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(11px, 2vw, 13px);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.fb-panel-h1 {
    font-size: clamp(2rem, 8vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.fb-panel-p {
    max-width: 650px;
    color: #ccc;
    font-size: clamp(1rem, 2vw, 1.15rem);
    margin-bottom: 35px;
}

.fb-panel-btn-wrap {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* 4. BUTTONS - Click targets optimized for mobile */
.fb-panel-btn-y,
.fb-panel-btn-w {
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
    transition: 0.3s ease;
    display: inline-block;
    text-align: center;
    min-width: 160px;
}

.fb-panel-btn-y {
    background: #ffcc00;
    color: #000;
}

.fb-panel-btn-w {
    border: 2px solid #fff;
    color: #fff;
    padding: 13px 33px;
}

.fb-panel-btn-y:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.2);
}

.fb-panel-btn-w:hover {
    background: #fff;
    color: #000;
}

/* 5. GRID & SPLIT LAYOUTS */
.fb-panel-section {
    padding: clamp(40px, 8vh, 100px) 0;
}

.fb-panel-bg-dark {
    background: #050505;
}

.fb-panel-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
}

.fb-panel-resp-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid #333;
    display: block;
}

.fb-panel-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.fb-panel-tag {
    border: 1px solid #ffcc00;
    color: #ffcc00;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* 6. PRODUCT CARDS - Auto-responsive grid */
.fb-panel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.fb-panel-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.fb-panel-card-head {
    padding: 20px;
    border-bottom: 2px solid #222;
    background: #1a1a1a;
}

.fb-panel-active {
    border-color: #ffcc00;
    transform: translateY(-5px);
}

.fb-panel-active .fb-panel-card-head {
    background: #ffcc00;
    color: #000;
}

.fb-panel-card-body {
    padding: 25px;
}

.fb-panel-mini-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fb-panel-mini-list li {
    padding: 10px 0;
    color: #bbb;
    border-bottom: 1px solid #222;
    font-size: 0.95rem;
}

/* 7. DUAL LISTS */
.fb-panel-dual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.fb-panel-info-box {
    padding: clamp(25px, 5vw, 40px);
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
}

.fb-panel-yellow {
    background: #ffcc00;
    color: #000;
    border: none;
}

.fb-panel-ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.fb-panel-ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 30px;
    font-weight: 700;
}

.fb-panel-ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #ffcc00;
}

.fb-panel-yellow .fb-panel-ul li::before {
    color: #000;
}

/* 8. MEDIA QUERIES - Strategic Breakpoints */

/* For Tablets and Small Desktops */
@media (max-width: 992px) {
    .fb-panel-split {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .fb-panel-img-box {
        order: -1;
        margin-bottom: 20px;
    }

    .fb-panel-container {
        padding: 0 30px;
    }
}

/* For Mobile Devices */
@media (max-width: 600px) {
    .fb-panel-hero {
        text-align: center;
        padding: 60px 0;
    }

    .fb-panel-badge {
        justify-content: center;
    }

    .fb-panel-title {
        text-align: center;
    }

    .fb-panel-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .fb-panel-p {
        margin: 0 auto 30px;
    }

    .fb-panel-btn-wrap {
        flex-direction: column;
        align-items: center;
    }

    .fb-panel-btn-y,
    .fb-panel-btn-w {
        width: 100%;
        max-width: 300px;
    }

    .fb-panel-dual {
        grid-template-columns: 1fr;
    }

    .fb-panel-info-box {
        padding: 30px 20px;
    }

    .fb-panel-tags {
        justify-content: center;
    }
}